home *** CD-ROM | disk | FTP | other *** search
/ Software USA 4 #11 / Software USA Volume 4.11.iso / mac / Educational / mac06 / usr / include / netinet / netinet⁄in_systm.h < prev    next >
Encoding:
Text File  |  1998-05-01  |  362 b   |  23 lines  |  [TEXT/SPM ]

  1. /* mac06©1998 by HNS/DSITRI hns@computer.org
  2. ** netinet/in_system.h
  3. ** 01.05.1998    HNS        pulled out from ping.c
  4. */
  5.  
  6. #pragma once
  7.  
  8. /* convert host to network octet order */
  9.  
  10. #define htonl(l) (l)
  11. #define htons(s) (s)
  12. #define ntohl(l) (l)
  13. #define ntohs(s) (s)
  14.  
  15. typedef unsigned char u_char;
  16. typedef unsigned short u_short;
  17. typedef unsigned long u_long;
  18.  
  19. /* EOF */
  20.  
  21.  
  22.  
  23.